home *** CD-ROM | disk | FTP | other *** search
- function signalPageUnload(signal)
- {
- var xmlhttp = new XMLHttpRequest;
- xmlhttp.open("GET", "savedata?unload=" + signal, false);
- xmlhttp.send(null);
- }
-
- function setPageSize(width, height)
- {
- window.innerWidth = width;
- window.innerHeight = height;
- }
-
- function moveCenter()
- {
- window.moveTo((screen.availWidth - window.outerWidth) / 2, (screen.availHeight - window.outerHeight) / 2);
- }